home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / math / ast53src.zip / MAKEFILE.UNX < prev    next >
Text File  |  1996-09-29  |  1KB  |  33 lines

  1. # Astrolog (Version 5.30) File: Makefile (Unix version)
  2. #
  3. # IMPORTANT NOTICE: The graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1996 by Walter D. Pullen
  5. # (Astara@msn.com, http://www.magitech.com/~cruiser1/astrolog.htm).
  6. # Permission is granted to freely use and distribute these routines
  7. # provided one doesn't sell, restrict, or profit from them in any way.
  8. # Modification is allowed provided these notices remain with any
  9. # altered or edited versions of the program.
  10. #
  11. # First created 11/21/1991.
  12. #
  13. # This Makefile is included only for convenience. One could easily compile
  14. # Astrolog on a Unix system by hand with the command:
  15. # % cc -c -O *.c; cc -o astrolog *.o -lm -lX11
  16. # Generally, all that needs to be done to compile once astrolog.h has been
  17. # edited, is compile each source file, and link them together with the math
  18. # library, and if applicable, the main X library.
  19. #
  20. NAME = astrolog
  21. OBJ = astrolog.o data.o data2.o general.o io.o\
  22.  calc.o matrix.o placalc.o placalc2.o\
  23.  charts0.o charts1.o charts2.o charts3.o intrpret.o\
  24.  xdata.o xgeneral.o xdevice.o xcharts0.o xcharts1.o xcharts2.o xscreen.o
  25. # If you don't have X windows, delete the "-lX11" part from the line below:
  26. LIBS = -lm -lX11
  27. CFLAGS = -O
  28.  
  29. astrolog:: $(OBJ)
  30.     cc -o $(NAME) $(OBJ) $(LIBS)
  31.     strip $(NAME)
  32. #
  33.